From b1d308ee48c5428c112526d2b41ed334ff3a4b7f Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Sun, 6 Dec 2009 00:21:56 +0000 Subject: [PATCH] * ffap.el (ffap-rfc-path): Make this a defcustom since `ffap-rfc-directories' is also a defcustom. (My Bug#4514.) --- lisp/ffap.el | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/lisp/ffap.el b/lisp/ffap.el index 7d3f279f724..b7761a63198 100644 --- a/lisp/ffap.el +++ b/lisp/ffap.el @@ -951,6 +951,16 @@ If t, `ffap-tex-init' will initialize this when needed.") "/pub/gnu/emacs/elisp-archive/")) (substring name 2)))) +(defcustom ffap-rfc-path + (concat (ffap-host-to-filename "ftp.rfc-editor.org") "/in-notes/rfc%s.txt") + "A `format' string making a filename for RFC documents. +This can be an ange-ftp or tramp remote filename to download, or +a local filename if you have full set of RFCs locally. See also +`ffap-rfc-directories'." + :type 'string + :version "23.1" + :group 'ffap) + (defcustom ffap-rfc-directories nil "A list of directories to look for RFC files. If a given RFC isn't in these then `ffap-rfc-path' is offered." @@ -958,9 +968,6 @@ If a given RFC isn't in these then `ffap-rfc-path' is offered." :version "23.1" :group 'ffap) -(defvar ffap-rfc-path - (concat (ffap-host-to-filename "ftp.rfc-editor.org") "/in-notes/rfc%s.txt")) - (defun ffap-rfc (name) (let ((num (match-string 1 name))) (or (ffap-locate-file (format "rfc%s.txt" num) t ffap-rfc-directories) -- 2.30.2